body {
  /* font-family: Arial, sans-serif; */
  /* background: url(http://www.shukatsu-note.com/wp-content/uploads/2014/12/computer-564136_1280.jpg) no-repeat; */
  /* background-size: cover; */
  /* height: 100vh; */
}

h1 {
  /* text-align: center; */
  /* font-size: 10px; */
  /* font-family: Tahoma, Arial, sans-serif; */
  /* color: #06D85F; */
  /* margin: 80px 0; */
}

.box {
  position: relative; 
  /* top: 70px; */
  width: 50px; 
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 2px;
  border: 2px solid #CF9A32;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.button {
  font-size: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  color: #fff;
  border: 2px solid #CF9A32;
  border-radius: 20px/50px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.button:hover {
  background: #06D85F;
}

.overlay {
	background-color: hsla(0,0%,0%,0.74); */
    /* transition: opacity 500ms; */
    /* visibility: hidden; */
    /* opacity: 0; */
	/* position: absolute; */
	/* z-index: 1111; */
	/* border:5px solid #CF9A32; */ 
	/* margin-top: 2%; */ 
	/* overflow-y: scroll; */
	/* height: 85%; */
	/* min-height: 95%; */ 
	/* left: 13.5%; */
	/* width: 80%; */
  
	                                  
}
.overlay:target {
  visibility: visible;
  opacity: 1;

	
	
}

.popup {
	position: relative;
	/* margin: 70px auto; */
    /* padding: 10px; */
    /* width: 30%; */
    transition: all 5s ease-in-out;
    /* background: #fff; */
    background-color: hsla(0,0%,0%,0.74);
    /* border: solid 3px #CF9A32; */
    border-radius: 5px;
	/* z-index: 9994; */
	overflow-x: hidden;
	overflow-y: hidden;
}

.popup h2 {
  /* margin-top: 0; */
  /* color: #ffffff; */
  /* font-family: Tahoma, Arial, sans-serif; */
}
.popup .close {
  position: absolute;
  /* top: 5px; */
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  max-height: 90%;
  /* overflow: auto; */
}
.content {
  color: #ffffff;
}

@media screen and (max-width: 700px){
  .box{
    /* width: 70%; */
  }
  .popup {
    /* width: 70%;
  }
}